/* 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Tax Return Page / Tax Information Details Page  

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
*/

/* Process Mode Card */
.process-mode-card {
    border: 1px solid #c9d1d9;
    border-radius: 10px;
    padding: 16px 18px;
    background: linear-gradient(180deg, #f6f8fa 0%, #eef1f4 100%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    max-width: 540px;
}

.process-mode-card:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    border-color: #b8c2cc;
}

.process-mode-card:focus {
    outline: 2px solid #0f62fe;
    outline-offset: 2px;
}

/* Card Layout */
.process-mode-card-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-mode-card-text {
    flex: 1;
}

/* Arrow */
.process-mode-card-arrow {
    font-size: 60px;
    color: #6b7280;
    margin-right: 20px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.process-mode-card:hover .process-mode-card-arrow {
    transform: translateX(6px);
    color: #374151;
}

/* Text */
.process-mode-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
}

.process-mode-card-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
}

/* Disabled state */
.process-mode-card-disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

{ PLACEHOLDER SECTION TITLE } 

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
*/